body {
    /*background: var(--lp-bg);*/
    padding: 10px;
}

.landing-page {
    background: rgba(245,245,245);
    margin: auto;
    border-radius: 20px;
    min-width: 280px;
    font-size: 20px;
}


.desktop {
    display: none !important;
}




/* Название компании */
.header-company {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
    margin-bottom: 30px;
}
    .company-img
    {
        width: 60px;
        height: 60px;
        background: var(--lp-theme-icon);
        background-size: 100%;
    }
    .company-name {
        font-family: 'Rupster-Script';
        text-align: center;
        font-size: 20px;
    }
    
    .rating {
        position: absolute;
        top: 100%;
        display: flex;
        gap: 8px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
        .rating-stars {
            display: flex;
            width: 70px;
        }
        .rating-stars img {
            width: 15px;
        }
        .rating-value {
            white-space: nowrap;
            font-size: 70%;
        }
        .rating-value a {
            /*background: #EF1C39;
            background: #D32F2F;
            color: var(--primary-color);*/
            color: black;
            font-weight: bold;
            padding: 2px 8px;
            text-transform: uppercase;
            transition: opacity .3s;
        }
        .rating-value a:hover {
            opacity: .8;
        }
        .rating-value a::before {
            content: '';
            display: inline-flex;
            width: 20px;
            height: 20px;
            background: url('../imgs/avito.png') no-repeat center;
            background-size: 200%;
            position: relative;
            top: 6px;
        }


/* Контактная информация в шапке */
.header-contacts {
    margin: auto;
    position: relative;
}
    .call-btn {
        width: 180px;
        height: 30px;
        margin: auto;
        display: flex;
        align-items: center;
        background: var(--primary-color);
        background: #D32F2F;
        border-radius: 30px;
        padding-left: 5px;
        position: relative;
        box-shadow: 0 4px 10px rgba(0,0,0,.2);
        position: relative;
        z-index: 1;
    }
    .call-btn > * {
        display: block;
    }
    .call-btn-img {
        width: 20px;
        height: 20px;
        background: var(--lp-bg) url(../imgs/phone-call.svg) no-repeat center;
        background-size: 50%;
        border-radius: 50%;
        flex-shrink: 0;
         animation: 1200ms ease 0s normal none 1 running shake;
        animation-iteration-count: infinite;
        -webkit-animation: 1200ms ease 0s normal none 1 running shake;
        -webkit-animation-iteration-count: infinite;
    }
    .call-btn-number {
        padding: 0 25px 0 8px;
        font-weight: bold;
        font-size: 80%;
        color: var(--btn-text-color);
        white-space: nowrap;
    }
    .call-btn-number-hide {
        position: absolute;
        top: 50%;
        right: 15px;
        background: linear-gradient(to right, transparent, var(--primary-color) 85%);
        width: 50%;
        height: 40px;
        transform: translateY(-50%);
        transition: opacity .3s;
        display: none;
        z-index: 0;
    }
    .call-btn-number-hide:hover {
        opacity: 0;
    }
    .call-time {
        text-align: center;
        margin-top: 6px;
        font-size: 70%;
        color: rgba(0,0,0,.6);
    }
    .call-time strong {
        color: rgba(0,0,0,1);
    }
    
    .call-btn.float {
        position: fixed;
        top: 15px;
        left: 50%;
        transform: translateX(-50%) scale(.8);
        z-index: 55;
        font-size: 20px;
    }
    
    .call-btn::before, .call-btn::after {
        content: "";
        position: absolute;
        border: 1px solid rgba(211, 47, 47, 0.5); /* Цвет ряби */
        width: 200px; /* Ширина ряби, больше чем сама кнопка */
        height: 40px; /* Высота ряби */
        border-radius: 90px; /* Скруглённые края */
        opacity: 0;
        transition: all 0.5s ease;
        left: -10px; /* Чтобы рябь не обрезалась */
        z-index: 0;
    }
    
    .call-btn::before {
        animation: ripple 2.5s infinite;
    }
    
    .call-btn::after {
        animation: ripple 2.5s 0.75s infinite;
    }
    
    .call-btn:hover::before,
    .call-btn:hover::after {
        opacity: 1;
    }
    
    @keyframes ripple {
        0% {
            transform: scale(0.8);
            opacity: 1;
        }
        100% {
            transform: scale(1.3);
            opacity: 0;
        }
    }


    #message-btn {
    }
    
    #message-btn {
        width: 180px;
        height: 30px;
        margin: auto;
        margin-top: 12px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        background: #41BD4F;
        background: #0E6718;
        background: #075E54;
        border-radius: 30px;
        padding-left: 5px;
        position: relative;
        box-shadow: 0 4px 10px rgba(0,0,0,.2);
        font-size: 80%;
    }
    #message-btn .call-btn-img {
        background: var(--lp-bg) url(../imgs/whatsapp-message.svg) no-repeat center;
        background-size: 60%;
    }

/* Экран с главным предложением */
.offer {
    margin: 12px 10px 120px;
    /* background: rgba(253,253,253);
    background: rgb(235, 235, 235); */
    border-radius: 15px;
    /*padding: 20px 0;*/
}
.offer h1 {
    text-align: center;
    user-select: none;
    margin: auto;
    padding: 20px 6px;
    font-size: 24px !important;
}
@media (max-width: 767px) {
    .offer h1 {
        font-size: 10vw;
    }
}

    .offer-service {
        margin: auto;
        margin-bottom: 20px;
        text-align: center;
        max-width: 404px;
    }
    
    .offer-service p {
        height: auto;
        font-size: 32px;
        text-transform: capitalize;
    }
    .offer-theme {
        font-size: 80%;
        max-width: 320px;
        margin: auto;
    }
        .offer-theme span {
            display: inline-block;
            font-size: 100%;
            color: white;
            background: #EF1C39;
            padding: 3px 12px;
        }
    .offer-target {
        font-size: 60%;
        margin-bottom: 30px;
        /*display: flex;*/
        flex-direction: column;
        align-items: center;
        display: none;
    }
        .offer-target .target {
            background: var(--primary-color);
            padding: 8px 15px;
            color:  var(--btn-text-color);
            display: flex;
            justify-content: center;
            margin: 16px auto;
            max-width: 320px;
            font-weight: bold;
            width: fit-content;
        }
    .offer-target.desktop {display: none;}

    /* Форма обратной связи */
    .offer-callback-form {
        margin: auto;
    }
    .offer-theme-img {
        width: 290px;
        height: 290px;
        /*background: var(--lp-theme-icon);
        background-size: contain;*/
        margin: 20px auto;
    }
    .offer-callbackform {
        max-width: 320px;
        margin: auto;
    }
    .offer-callbackform h2 {
        margin: 0;
        font-size: 24px;
    }
    .offer-form {
        background: rgba(253,253,253);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        margin-top: 7px;
        position: relative;
        display: none;
    }
        .offer-form h4 {
            font-size: 150%;
        }
        .offer-form p {
            font-size: 80%;
        }
        .offer-form p.offer-form-desc {
            margin: 10px 0;
        }
        .offer-form input#client-tel {
            width: 100%;
            text-align: center;
            background: rgba(245,245,245);
            border: none;
        }
        .offer-form input#client-tel::placeholder {
            font-size: 90%;
            opacity: .3;
            transition: opacity .3s;
        }
        .offer-form input#client-tel:focus::placeholder {
            opacity: 0;
        }
        .offer-form button#send-client-tel {
            width: 100%;
            border: none;
            background: var(--primary-color);
            color: var(--btn-text-color);
            transition: transform .3s, opacity .3s;
        }
        .offer-form button#send-client-tel:active {
            transform: scale(.9);
        }
        .offer-form button#send-client-tel:disabled {
            transform: scale(1);
            opacity: .3;
        }

        p.offer-form-note {
            margin-top: 8px;
            font-size: 60%;
        }

    /* Блок с ценой на диагностику */
    .offer-price.desktop {
        display: none;
    }
    .offer-price.mobile {
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
        color: rgba(0,0,0,.9);
        background: rgba(255,255,255);
        border-radius: 10px;
        padding: 8px;
        display: none;
    }
        .offer-price > div:first-child {
            font-size: 140%;
            font-weight: bold;
        }
        .offer-price > div:nth-child(2) {
            font-size: 70%;
            padding: 6px 0;
        }
        .offer-price > div:last-child {
            font-size: 50%;
            /* opacity: .5; */
        }

/* Что ремонтируем */
.type-list-h2 {
    font-size: 36px;
}
.type-list {
    width: 100%;
    margin: 0 auto 60px;
    display: flex;
    justify-content: flex-start;
    gap: 50px;
    padding: 20px 24px;
    overflow-x: scroll;
    /* margin-bottom: 120px; */
}
.type-list::-webkit-scrollbar {
    display: none;
}
.type-list-item {
    width: 125px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.type-list-item {
    /*border: 1px solid;*/
}
    .type-list-item-img {
        width: 120px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        /*background: rgba(253,253,253);
        border-radius: 50%;/* 
        border-radius: 15px; */
    }
    .type-list-item-img img {
        width: 70%;
        height: auto;
        transition: transform .5s;
    }
    .type-list-item h3,
    .type-list-item > p {
        font-size: 80%;
        opacity: 1;
        transition: opacity .5s;
        text-align: center;
        font-weight: normal;
    }
/* .type-list-item:hover img {
    transform: scale(1.4);
}
.type-list-item:hover h3 {
    opacity: 1;
} */

/* Блок с марками */
.brand-list {
    margin: auto;
}
    .brand-list-wrap {
        overflow-x: scroll;
        overflow-y: hidden;
    }
    .brand-items {
        width: fit-content;
        display: flex;
    }
    .brand-items img {
        height: auto;
        width: 80%;
    }
    .brand-items > div {
        height: 80px;
        width: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* border-right: 1px solid rgba(245,245,245);
        border-left: 1px solid rgba(245,245,245); */
        transition: opacity .3s;
    }

    
/* Блок преимуществ */
h2 {
    text-align: center;
    font-size: 200%;
    margin: 120px auto;
    padding: 0 15px;
}

    .advantages-center {
        width: 280px;
        height: 280px;
        background: var(--lp-theme-icon);
        margin: 60px auto;
    }
    .advantages-left > div, 
    .advantages-right > div {
        text-align: center;
        max-width: 320px;
        margin: 0 auto 50px;
    }
    .advantages-item h3 {
       margin-bottom: 26px;
       padding: 0 15px;
       font-weight: bold;
    }
    .advantages-item p {
       font-size: 80%;
       padding: 0 12px;
    }

.advantages-company {
    text-align: center;
    margin-top: 90px;
}
    .advantages-company > div:last-child {
        margin: auto;
        margin-top: 36px;
        max-width: 320px;
        font-size: 80%;
        padding: 0 25px;
    }


/* Как мы работаем */
.steps {
    /* display: none; */
    margin: auto;
}
    .step {
        text-align: center;
        max-width: 320px;
        margin: 0 auto 50px;
    }
        .step > div:first-child {
            font-size: 500%;
            font-weight: 800;
        }
        .step > div:last-child {
            margin-top: 26px;
            font-size: 90%;
            padding: 0 15px;
        }

.steps-final {
    text-align: center;
    margin: auto;
    margin-top: 60px;
    max-width: 320px;
}
    .steps-theme-img {
        width: 120px;
        height: 120px;
        background: var(--lp-theme-icon);
        margin: auto;
    }
    .steps-final > div:last-child {
        margin-top: 26px;
        font-weight: bold;
        padding: 0 15px;
    }
    
/* Прайс лист */
.price-list {
    width: 90%;
    margin: auto;
    user-select: none;
}
.price-list.open {
    display: block;
}
    .price-list-items {
        height: 70%;
        overflow: scroll;
        border-radius: 10px;
        border: 2px solid rgba(250,250,250);
    }
    
    .price-list-item {
        padding: 12px 25px;
        text-align: center;
        display: flex;
    }
    .price-list-item:nth-child(even) {
        /*background: rgba(250,250,250);*/
    }
    .price-list-item h4 {
        color: rgba(50,50,50);
        padding-bottom: 8px;
        font-size: 80%;
        text-align: left;
        width: 70%;
    }
    .price-list-item > p {
        font-size: 80%;
        text-align: right;
        width: 30%;
    }
    
    .price-list-desc {
        text-align: center;
        width: 80%;
        font-size: 70%;
        margin: 30px auto;
    }
    
    /* кнопка */
    .price-list-btn {
        width: 180px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        border-radius: 30px;
        padding-left: 5px;
        position: relative;
        box-shadow: 0 3px 10px rgba(0,0,0,.2);
        color: rgba(255,255,255);
        transition: all .5s;
        cursor: pointer;
        user-select: none;
        font-weight: 600;
        margin: auto;
    }
    
    .price-list-btn:active {
        transform: scale(.9);
    }
    
/* Примеры работ */
h2.low-margin-bottom {
    margin-bottom: 30px;
}
.work-examples {
    margin: auto;
    overflow-x: scroll;
}
    .work-examples-success {
        text-align: center;
        padding: 24px 6px;
        font-weight: bold;
    }
    .work-examples-list {
         width: fit-content;
         display: flex;
         gap: 16px;
    }
    
    
/* Отзывы */
.profi-ru {
    background: #EF1C39;
    background: #AC0C23;
    background: #D32F2F;
    color: white;
    font-weight: bold;
    padding: 2px 12px;
    text-transform: uppercase;
}
.reviews {
    margin: auto;
    padding: 15px;
}
.reviews-info {
    text-align: center;
    padding: 0 6px 24px;
}
.hide-reviews {
    display: none;
}
.hide-reviews.show {
    display: block;
}
    .show-more-reviews {
        padding: 12px;
        background: #FDFDFD;
        border-radius: 12px;
        text-align: center;
        margin-bottom: 16px;
    }
.reviews-stats {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 26px;
}
.reviews-stats-value {
    font-size: 60px;
    font-weight: bold;
}
.rating-desc {
    margin-top: 4px;
    font-size: 90%;
    text-align: center;
}

    .review-item {
        background: rgba(253,253,253);
        border-radius: 16px;
        padding: 15px;
        margin-bottom: 16px;
    }
        .review-user-data {
            display: flex;
            gap: 16px;
        }
        .review-user-name {
            font-size: 80%;
            margin-left: 3px;
            margin-bottom: 3px;
        }
        .review-user-img {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #33313C;
            color: rgba(253,253,253);
            font-size: 130%;
            border-radius: 50%;
        }
        .review-user-rating {
            /* display: flex; */
            align-items: flex-end;
            gap: 20px;
        }
            .review-user-rating-stars {
                display: inline-flex;/* 
                width: 90px; */
                position: relative;
            }
            .review-user-rating-stars img {
                width: 20px;
            }
            .review-user-rating-stars.plus-five img:last-child {
                transform: rotate(-8deg);
                position: relative;
                top: -1.5px;
            }
            .review-user-rating-stars.plus-five::after {
                content: '';
                width: 8px;
                height: 8px;
                background: url(../imgs/plus_profi.svg) no-repeat center;
                background-size: 100%;
                display: block;
                position: absolute;
                left: 100%;
                bottom: 0;
                transform: rotate(45deg) translateY(-1px) translateX(-3px);
            }
            .review-user-rating-stars.plus-five::before {
                content: '';
                width: 11px;
                height: 11px;
                background: url(../imgs/plus_profi.svg) no-repeat center;
                background-size: 100%;
                display: block;
                position: absolute;
                left: 100%;
                top: 0;
                bottom: 1.5px;
                transform: rotate(10deg) translateX(1px) translateY(-2px);
            }
            .review-user-rating-date {
                font-size: 80%;
                margin-left: 3px;
                color: #525252;
            }
            
    .review-user-message {
        padding-left: 60px;
        font-size: 90%;
        padding-top: 10px;
    }
    .review-user-cost {
        padding-left: 60px;
        margin-top: 12px;
        font-size: 90%;
    }
        .review-user-cost > p:first-child {
            margin-bottom: 2px;
            font-size: 90%;
            color: #525252;
        }
    .review-user-photo {
        margin-left: 60px;
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 8px;
    }
        .review-user-photo img {
            width: 100px;
        }

/*  
.reviews.dev {
    position: relative;
}      
.reviews.dev .reviews-list {
    height: 1100px;
    overflow: hidden;
    position: relative;
    transition: height .5s;
}
.reviews.dev .reviews-list.full {
    height: 100%;
    transition: height .5s;
}
.reviews.dev .reviews-list-show-more {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(253,253,253);
    padding: 5px 15px;
    border-radius: 10px;
    white-space: nowrap;
}
*/


/* Блок с контактными данными */
footer {
    margin: auto;
    margin-top: 60px;
    padding: 60px 25px 25px;
    width: 320px;
    display: inline-block;
}
    footer > div:first-child {
        margin-bottom: 16px;
        font-size: 60%;
        font-weight: bold;
        color: #525252;
    }
    footer > div:last-child {
        font-size: 40%;
        color: #525252;
    }
    
